home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Firebug 1.3.3 / firebug-1.3.3-fx.xpi / content / firebug / firebug.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2008-07-03  |  2.0 KB  |  87 lines

  1. /* See license.txt for terms of usage */
  2.  
  3. @import "chrome://firebug/skin/firebug.css";
  4. @import "chrome://firebug-os/skin/firebug.css";
  5.  
  6. window[chromehidden~="toolbar"] #fbToolbar {
  7.    display: -moz-box;
  8. }
  9.  
  10. #fbContentBox {
  11.     -moz-binding: url("chrome://firebug/content/bindings.xml#initializer");
  12.     height: 270px;
  13. }
  14.  
  15. #fbCommandLine {
  16.     -moz-binding: url("chrome://firebug/content/bindings.xml#commandLine");
  17. }
  18.  
  19. #fbLargeCommandLine {
  20.     -moz-binding: url("chrome://firebug/content/bindings.xml#largeCommandLine");
  21. }
  22.  
  23. #fbSearchBox {
  24.     -moz-binding: url("chrome://firebug/content/bindings.xml#searchBox");
  25. }
  26.  
  27. .fbSearchBox-attention {
  28.     color: red;
  29.     font-weight: bold;
  30. }
  31.  
  32. panelBar {
  33.     -moz-binding: url("chrome://firebug/content/bindings.xml#panelBar");
  34.     -moz-box-orient: vertical;
  35. }
  36.  
  37. panelTab {
  38.     -moz-binding: url("chrome://firebug/content/bindings.xml#panelTab");
  39. }
  40.  
  41. panelStatus {
  42.     -moz-binding: url("chrome://firebug/content/bindings.xml#panelStatus");
  43. }
  44.  
  45. #fbCallstack {
  46.     -moz-binding: url("chrome://firebug/content/bindings.xml#panelStatus");
  47. }
  48.  
  49. #fbLocationList {
  50.     -moz-binding: url("chrome://firebug/content/bindings.xml#panelFileList");
  51. }
  52.  
  53. #fbStatusText {
  54.     visibility: collapse;
  55. }
  56.  
  57. #fbStatusBar[errors] #fbStatusText {
  58.     visibility: visible;
  59. }
  60.  
  61. #fbToolbar[moz-collapsed="true"] {
  62.     /* Prevent full-screen from hiding toolbar */
  63.     visibility: visible;
  64. }
  65.  
  66. /************************************************************************************************/
  67.  
  68. panelTabMenu {
  69.     -moz-binding: url("chrome://firebug/content/bindings.xml#panelTabMenu");
  70. }
  71.  
  72. panelTab > panelTabMenu .menuTarget {
  73.     visibility:collapse;
  74. }
  75.  
  76. panelTab[selected="true"] > panelTabMenu .menuTarget {
  77.     background: url(chrome://firebug/skin/tabMenuTarget.png) no-repeat center;
  78.     width: 11px;
  79.     height: 10px;
  80.     vertical-align:middle;
  81.     visibility:visible;
  82. }
  83.  
  84. panelTab[selected="true"]:hover > panelTabMenu .menuTarget {
  85.     background: url(chrome://firebug/skin/tabMenuTargetHover.png) no-repeat center;
  86. }
  87.